home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Shutter 1.1 / Shutter.h < prev    next >
Encoding:
Text File  |  1996-06-25  |  1.3 KB  |  61 lines  |  [TEXT/CWIE]

  1. /*
  2.     Shutter.h
  3.     C Header File
  4.     
  5.     Part of the Shutter package
  6. */
  7.  
  8. // Local Includes
  9. // (none here)
  10.  
  11. /*
  12.     Here is a selection of the Unviersal Header files I use most frequently. 
  13.     Commented out ones are not required for this particular project.
  14. */
  15.  
  16. // Universal Includes
  17. //#include <AppleEvents.h>
  18. #include <Controls.h>
  19. //#include <CursorCtl.h>
  20. #include <Devices.h>
  21. #include <Dialogs.h>
  22. //#include <Diskinit.h>
  23. //#include <Disks.h>
  24. //#include <EPPC.h>
  25. #include <Errors.h>
  26. #include <Events.h>
  27. #include <Files.h>
  28. //#include <Finder.h>
  29. //#include <FixMath.h>
  30. //#include <fp.h>
  31. //#include <Fonts.h>
  32. #include <GestaltEqu.h>
  33. #include <Memory.h>
  34. #include <Menus.h>
  35. //#include <Notification.h>
  36. #include <OSUtils.h>
  37. //#include <Palettes.h>
  38. //#include <PictUtils.h>
  39. //#include <PLStringFuncs.h>
  40. //#include <Printing.h>
  41. //#include <Processes.h>
  42. #include <QDOffScreen.h>
  43. #include <QuickDraw.h>
  44. #include <Resources.h>
  45. //#include <Script.h>
  46. #include <SegLoad.h>
  47. #include <ShutDown.h>
  48. //#include <Sound.h>
  49. #include <ToolUtils.h>
  50. #include <Types.h>
  51. #include <Windows.h>
  52.  
  53. /*
  54.     Define my struct here, so it doesn't clutter up my source. **BUT** you must make 
  55.     sure that this gets to every file that needs it, if you are using multiple source files.
  56. */
  57. typedef struct {
  58.     short    myPrefsShort;
  59. } PrefsType;
  60.  
  61. // That's all folks!